The HTML tag is used to show text that's important or needs attention, like special notes in writing.
The <mark> tag shows text that should be marked or highlighted.
HTML Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8">
<!--This is our webpage it's our very first webpage-->
<title>Levoric | HTML Fundamentle Tutorial</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Write your content here levoriclearn top degree online and program-->
<p>This is a paragraph of text with some <mark>highlighted</mark content.</p>
<!--Write your content here levoriclearn top degree online and program-->
</body>
</html>